nixpkgs/pkgs/development/python-modules/cached-property/default.nix
Robert Schütz f760fcb239 pythonPackages.cached-property: fix tests
Need to fetch from GitHub because conftest.py is necessary to disable some tests for Python 2.
2018-02-26 23:42:14 +01:00

35 lines
750 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, freezegun
}:
buildPythonPackage rec {
pname = "cached-property";
version = "1.4.0";
# conftest.py is missing in PyPI tarball
# https://github.com/pydanny/cached-property/pull/87
src = fetchFromGitHub {
owner = "pydanny";
repo = pname;
rev = version;
sha256 = "0w7709grs4yqhfbnn7lva2fgyphvh43xcfqhi95lhh8sjad3xwkw";
};
checkInputs = [ pytest freezegun ];
checkPhase = ''
py.test
'';
meta = {
description = "A decorator for caching properties in classes";
homepage = https://github.com/pydanny/cached-property;
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ ericsagnes ];
};
}