2017-07-20 14:29:52 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "py";
|
2018-04-04 20:13:34 +02:00
|
|
|
version = "1.5.3";
|
2017-07-20 14:29:52 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-04-04 20:13:34 +02:00
|
|
|
sha256 = "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881";
|
2017-07-20 14:29:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Circular dependency on pytest
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library with cross-python path, ini-parsing, io, code, log facilities";
|
|
|
|
homepage = http://pylib.readthedocs.org/;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|