2017-07-19 11:29:13 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, dateutil }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aniso8601";
|
2018-06-21 06:37:15 +01:00
|
|
|
version = "3.0.2";
|
2017-07-19 11:29:13 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Parses ISO 8601 strings.";
|
|
|
|
homepage = "https://bitbucket.org/nielsenb/aniso8601";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ dateutil ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-21 06:37:15 +01:00
|
|
|
sha256 = "7849749cf00ae0680ad2bdfe4419c7a662bef19c03691a19e008c8b9a5267802";
|
2017-07-19 11:29:13 +01:00
|
|
|
};
|
|
|
|
}
|