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

20 lines
494 B
Nix
Raw Normal View History

2017-07-20 12:29:52 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "py";
2018-04-04 18:13:34 +00:00
version = "1.5.3";
2017-07-20 12:29:52 +00:00
src = fetchPypi {
inherit pname version;
2018-04-04 18:13:34 +00:00
sha256 = "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881";
2017-07-20 12:29:52 +00: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;
};
}