python-path: new package

path is a module wrapper for os.path.

It's a dependency of moretools (which is a dependency of
robotframework-tools, which is what I want to package).
This commit is contained in:
Bjørn Forsman 2014-09-03 18:31:22 +02:00
parent 476ca07d8e
commit f41e336cc0

View file

@ -5583,6 +5583,22 @@ rec {
};
};
pathpy = buildPythonPackage rec {
name = "path.py-5.2";
src = fetchurl {
url = "https://pypi.python.org/packages/source/p/path.py/${name}.zip";
sha256 = "0n1kpbbm1dg5f484yzxr7gb3ak6vjp92j70nw3bgjzsj9fh26afq";
};
meta = with stdenv.lib; {
description = "A module wrapper for os.path";
homepage = http://github.com/jaraco/path.py;
license = licenses.mit;
platforms = platforms.linux;
};
};
paypalrestsdk = buildPythonPackage rec {
name = "paypalrestsdk-0.7.0";