nixpkgs/pkgs/development/python-modules/arrow/default.nix

32 lines
751 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
2017-12-30 11:21:21 +00:00
, nose, chai, simplejson, backports_functools_lru_cache
2019-02-14 07:37:10 +00:00
, dateutil, pytz
}:
buildPythonPackage rec {
pname = "arrow";
2019-05-30 07:49:48 +01:00
version = "0.13.2";
src = fetchPypi {
inherit pname version;
2019-05-30 07:49:48 +01:00
sha256 = "82dd5e13b733787d4eb0fef42d1ee1a99136dc1d65178f70373b3678b3181bfc";
};
checkPhase = ''
nosetests --cover-package=arrow
'';
2019-02-14 07:37:10 +00:00
checkInputs = [ nose chai simplejson pytz ];
2017-12-30 11:21:21 +00:00
propagatedBuildInputs = [ dateutil backports_functools_lru_cache ];
2018-01-03 13:33:50 +00:00
postPatch = ''
substituteInPlace setup.py --replace "==1.2.1" ""
'';
meta = with stdenv.lib; {
description = "Python library for date manipulation";
license = "apache";
maintainers = with maintainers; [ thoughtpolice ];
};
}