depot/third_party/nixpkgs/pkgs/development/python-modules/rfc3339/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

28 lines
564 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "rfc3339";
version = "6.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1l6l1bh91i2r4dwcm86hlkx8cbh1xwgsk8hb4jvr5y5fxxg3ng6m";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "rfc3339" ];
meta = with lib; {
description = "Format dates according to the RFC 3339";
homepage = "https://hg.sr.ht/~henryprecheur/rfc3339";
license = licenses.isc;
maintainers = with maintainers; [ fab ];
};
}