depot/third_party/nixpkgs/pkgs/development/python-modules/pyrfc3339/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
496 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, pytz
, nose
}:
buildPythonPackage rec {
pname = "pyRFC3339";
version = "1.1";
src = fetchPypi {
inherit pname version;
sha256 = "06jv7ar7lpvvk0dixzwdr3wgm0g1lipxs429s2z7knwwa7hwpf41";
};
propagatedBuildInputs = [ pytz ];
buildInputs = [ nose ];
meta = with stdenv.lib; {
description = "Generate and parse RFC 3339 timestamps";
homepage = "https://github.com/kurtraschke/pyRFC3339";
license = licenses.mit;
};
}