nixpkgs/pkgs/development/python-modules/udatetime/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

36 lines
780 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
}:
buildPythonPackage rec {
pname = "udatetime";
version = "0.0.17";
src = fetchPypi {
inherit pname version;
hash = "sha256-sQvFVwaZpDinLitaZOdr2MKO4779FvIJOHpVB/oLgwE=";
};
patches = [
# fix build with python 3.9
(fetchpatch {
url = "https://github.com/freach/udatetime/pull/33.patch";
sha256 = "02wm7ivkv1viqn2wflgd10dgpddfqfrwacmrldigb1mwb79n554j";
})
];
# tests not included on pypi
doCheck = false;
pythonImportsCheck = [ "udatetime" ];
meta = with lib; {
description = "Fast RFC3339 compliant Python date-time library";
homepage = "https://github.com/freach/udatetime";
license = licenses.asl20;
maintainers = with maintainers; [ globin ];
};
}