087d4e8352
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-pyrfc3339/versions
27 lines
494 B
Nix
27 lines
494 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;
|
|
};
|
|
|
|
}
|