forked from mirrors/nixpkgs
e78eae37cb
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.7-aniso8601/versions
21 lines
464 B
Nix
21 lines
464 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aniso8601";
|
|
version = "4.1.0";
|
|
|
|
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;
|
|
sha256 = "1x49k287ky1spv3msc9fwmc7ydyw6rlcr14nslgcmpjfn3pgzh03";
|
|
};
|
|
}
|