pythonPackages.strict-rfc3339: init at 0.7
This commit is contained in:
parent
75fba4a183
commit
fcf7cacb94
2 changed files with 22 additions and 0 deletions
20
pkgs/development/python-modules/strict-rfc3339/default.nix
Normal file
20
pkgs/development/python-modules/strict-rfc3339/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "strict-rfc3339";
|
||||
version = "0.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/danielrichman/strict-rfc3339";
|
||||
license = licenses.gpl3;
|
||||
description = "Strict, simple, lightweight RFC3339 functions";
|
||||
maintainers = with maintainers; [ vanschelven ];
|
||||
};
|
||||
}
|
|
@ -5445,6 +5445,8 @@ in {
|
|||
|
||||
stripe = callPackage ../development/python-modules/stripe { };
|
||||
|
||||
strict-rfc3339 = callPackage ../development/python-modules/strict-rfc3339 { };
|
||||
|
||||
twilio = callPackage ../development/python-modules/twilio { };
|
||||
|
||||
uranium = callPackage ../development/python-modules/uranium { };
|
||||
|
|
Loading…
Reference in a new issue