My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyrfc3339/default.nix

26 lines
486 B

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