python.pkgs.maya: init at 0.3.3
This commit is contained in:
parent
12ff860380
commit
642788bd85
32
pkgs/development/python-modules/maya/default.nix
Normal file
32
pkgs/development/python-modules/maya/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchPypi, fetchpatch, buildPythonPackage
|
||||
, dateparser, humanize, pendulum, ruamel_yaml, tzlocal }:
|
||||
|
||||
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 ];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Datetimes for Humans";
|
||||
homepage = https://github.com/kennethreitz/maya;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -10194,6 +10194,8 @@ in {
|
||||
|
||||
matrix-client = callPackage ../development/python-modules/matrix-client/default.nix { };
|
||||
|
||||
maya = callPackage ../development/python-modules/maya { };
|
||||
|
||||
mccabe = callPackage ../development/python-modules/mccabe { };
|
||||
|
||||
mechanize = buildPythonPackage (rec {
|
||||
|
Loading…
Reference in New Issue
Block a user