depot/third_party/nixpkgs/pkgs/development/python-modules/udatetime/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

27 lines
579 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "udatetime";
version = "0.0.17";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-sQvFVwaZpDinLitaZOdr2MKO4779FvIJOHpVB/oLgwE=";
};
# 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 ];
};
}