summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/iso8601
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-04-26 09:49:51 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-04-26 20:14:02 +0200
commit774d7e5fa259066b342e2b28ace0c47e8fbc3fa9 (patch)
tree0e92414dc5721396d715e2103a94a904555f9470 /pkgs/development/python-modules/iso8601
parentpython*Packages.dask-glm: fix evaluation (diff)
downloadnixpkgs-774d7e5fa259066b342e2b28ace0c47e8fbc3fa9.tar.gz
python3Packages.iso8601: switch to pytestCheckHook
Diffstat (limited to 'pkgs/development/python-modules/iso8601')
-rw-r--r--pkgs/development/python-modules/iso8601/default.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/iso8601/default.nix b/pkgs/development/python-modules/iso8601/default.nix
index 783f6f1eb305..404833904608 100644
--- a/pkgs/development/python-modules/iso8601/default.nix
+++ b/pkgs/development/python-modules/iso8601/default.nix
@@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
-, pytest
+, pytestCheckHook
}:
buildPythonPackage rec {
@@ -13,15 +13,18 @@ buildPythonPackage rec {
sha256 = "8aafd56fa0290496c5edbb13c311f78fa3a241f0853540da09d9363eae3ebd79";
};
- checkInputs = [ pytest ];
+ checkInputs = [
+ pytestCheckHook
+ ];
- checkPhase = ''
- py.test iso8601
- '';
+ pytestFlagsArray = [ "iso8601" ];
- meta = {
- homepage = "https://bitbucket.org/micktwomey/pyiso8601/";
+ pythonImportsCheck = [ "iso8601" ];
+
+ meta = with lib; {
description = "Simple module to parse ISO 8601 dates";
- maintainers = with lib.maintainers; [ phreedom ];
+ homepage = "https://pyiso8601.readthedocs.io/";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ phreedom ];
};
}