1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 09:53:17 +00:00
nixpkgs/pkgs/development/python-modules/pendulum/default.nix

23 lines
532 B
Nix
Raw Normal View History

2018-01-20 10:50:45 +00:00
{ stdenv, fetchPypi, buildPythonPackage, dateutil, pytzdata, tzlocal }:
buildPythonPackage rec {
pname = "pendulum";
2018-02-26 09:55:13 +00:00
version = "1.4.2";
2018-01-20 10:50:45 +00:00
src = fetchPypi {
inherit pname version;
2018-02-26 09:55:13 +00:00
sha256 = "39a255776528afe11ea0d57814f9bf3729c1e0b99063af2e5c6cfd750c3e1f7f";
2018-01-20 10:50:45 +00:00
};
propagatedBuildInputs = [ dateutil pytzdata tzlocal ];
# No tests
doCheck = false;
meta = with stdenv.lib; {
description = "Python datetimes made easy";
homepage = https://github.com/sdispater/pendulum;
license = licenses.mit;
};
}