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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
886 B
Nix
Raw Normal View History

{ lib, fetchPypi, fetchpatch, buildPythonPackage
, dateparser, humanize, pendulum, ruamel-yaml, tzlocal }:
2018-01-20 10:49:57 +00:00
buildPythonPackage rec {
pname = "maya";
version = "0.3.3";
src = fetchPypi {
inherit pname version;
sha256 = "1x88k4irpckvd7jf2yvqjw1s52hjqbxym1r1d928yb3fkj7rvlxs";
};
patches = [
(fetchpatch {
# https://github.com/kennethreitz/maya/issues/112
# Merged, so should be in next release.
url = "https://github.com/kennethreitz/maya/commit/f69a93b1103130139cdec30511777823957fb659.patch";
sha256 = "152ba7amv9dhhx1wcklfalsdzsxggik9f7rsrikms921lq9xqc8h";
})
];
propagatedBuildInputs = [ dateparser humanize pendulum ruamel-yaml tzlocal ];
2018-01-20 10:49:57 +00:00
# No tests
doCheck = false;
meta = with lib; {
2018-01-20 10:49:57 +00:00
description = "Datetimes for Humans";
homepage = "https://github.com/kennethreitz/maya";
2018-01-20 10:49:57 +00:00
license = licenses.mit;
};
}