Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e1521fe45dbb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dc1c06cb64d6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 5, 2018

  1. python.pkgs.cached-property: 1.4.2 -> 1.5.1

    Robert Schütz committed Nov 5, 2018
    Copy the full SHA
    dc1c06c View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/python-modules/cached-property/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/python-modules/cached-property/default.nix
Original file line number Diff line number Diff line change
@@ -7,20 +7,21 @@

buildPythonPackage rec {
pname = "cached-property";
version = "1.4.2";
version = "1.5.1";

# conftest.py is missing in PyPI tarball
src = fetchFromGitHub {
owner = "pydanny";
repo = pname;
rev = version;
sha256 = "0gjmgfilhljkx2b60cjikwh55jg2jwxhwi8hgkrzdnzk465ywhrw";
sha256 = "0xh0pwmiikx0il9nnfyf034ydmlw6992s0d209agd9j5d3s2k5q6";
};

checkInputs = [ pytest freezegun ];

# https://github.com/pydanny/cached-property/issues/131
checkPhase = ''
py.test
py.test -k "not test_threads_ttl_expiry"
'';

meta = {