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

21 lines
526 B
Nix
Raw Normal View History

2017-07-20 13:29:52 +01:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "py";
2017-12-30 11:25:41 +00:00
version = "1.5.2";
2017-07-20 13:29:52 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-12-30 11:25:41 +00:00
sha256 = "ca18943e28235417756316bfada6cd96b23ce60dd532642690dcfdaba988a76d";
2017-07-20 13:29:52 +01: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;
};
}