mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 01:04:06 +01:00
python312Packages.isodate: 0.6.1 -> 0.7.2
https://github.com/gweis/isodate/blob/0.7.2/CHANGES.txt
This commit is contained in:
parent
3ee5ecc95b
commit
ed08189738
1 changed files with 13 additions and 13 deletions
|
|
@ -2,32 +2,32 @@
|
|||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
unittestCheckHook,
|
||||
six,
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "isodate";
|
||||
version = "0.6.1";
|
||||
format = "setuptools";
|
||||
version = "0.7.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "SMWIHefosKDWSMsCTIBi3ITnuEDtgehkx2FP08Envek=";
|
||||
hash = "sha256-TNGqD0PKdvSmxsApKoX0CzXsLkPjFbWfBubTIXGpU+Y=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
nativeCheckInputs = [ unittestCheckHook ];
|
||||
|
||||
unittestFlagsArray = [
|
||||
"-s"
|
||||
"src/isodate/tests"
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/gweis/isodate/blob/${version}/CHANGES.txt";
|
||||
description = "ISO 8601 date/time parser";
|
||||
homepage = "http://cheeseshop.python.org/pypi/isodate";
|
||||
homepage = "https://github.com/gweis/isodate/";
|
||||
license = licenses.bsd0;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue