2018-07-22 11:17:12 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm }:
|
2017-07-20 13:29:52 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "py";
|
2018-07-22 11:17:12 +01:00
|
|
|
version = "1.5.4";
|
2017-07-20 13:29:52 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 11:17:12 +01:00
|
|
|
sha256 = "3fd59af7435864e1a243790d322d763925431213b6b8529c6ca71081ace3bbf7";
|
2017-07-20 13:29:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Circular dependency on pytest
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-07-22 11:17:12 +01:00
|
|
|
buildInputs = [ setuptools_scm ];
|
|
|
|
|
2017-07-20 13:29:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library with cross-python path, ini-parsing, io, code, log facilities";
|
|
|
|
homepage = http://pylib.readthedocs.org/;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|