python310Packages.isoduration: init at 20.11.0
This commit is contained in:
parent
c08247828f
commit
65e57dbb52
2 changed files with 52 additions and 0 deletions
50
pkgs/development/python-modules/isoduration/default.nix
Normal file
50
pkgs/development/python-modules/isoduration/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ lib
|
||||
, arrow
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, hypothesis
|
||||
, isodate
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "isoduration";
|
||||
version = "20.11.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bolsote";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-6LqsH+3V/K0s2YD1gvmelo+cCH+yCAmmyTYGhUegVdk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
arrow
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
hypothesis
|
||||
isodate
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# We don't care about benchmarks
|
||||
"tests/test_benchmark.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"isoduration"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for operations with ISO 8601 durations";
|
||||
homepage = "https://github.com/bolsote/isoduration";
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -4229,6 +4229,8 @@ in {
|
|||
|
||||
isodate = callPackage ../development/python-modules/isodate { };
|
||||
|
||||
isoduration = callPackage ../development/python-modules/isoduration { };
|
||||
|
||||
isort = callPackage ../development/python-modules/isort { };
|
||||
|
||||
isounidecode = callPackage ../development/python-modules/isounidecode { };
|
||||
|
|
Loading…
Reference in a new issue