nixpkgs/pkgs/development/python-modules/aniso8601/default.nix
2020-12-08 23:04:54 -08:00

23 lines
543 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, dateutil, mock, isPy3k }:
buildPythonPackage rec {
pname = "aniso8601";
version = "8.1.0";
meta = with stdenv.lib; {
description = "Parses ISO 8601 strings.";
homepage = "https://bitbucket.org/nielsenb/aniso8601";
license = licenses.bsd3;
};
propagatedBuildInputs = [ dateutil ];
checkInputs = stdenv.lib.optional (!isPy3k) mock;
src = fetchPypi {
inherit pname version;
sha256 = "246bf8d3611527030889e6df970878969d3a2f760ba3eb694fa1fb10e6ce53f9";
};
}