summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/py/default.nix
blob: 5f41a88d26e8d47bdbfc6d9ad5f0857da45127d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm }:
buildPythonPackage rec {
  pname = "py";
  version = "1.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bf92637198836372b520efcba9e020c330123be8ce527e535d185ed4b6f45694";
  };

  # Circular dependency on pytest
  doCheck = false;

  buildInputs = [ setuptools_scm ];

  meta = with stdenv.lib; {
    description = "Library with cross-python path, ini-parsing, io, code, log facilities";
    homepage = http://pylib.readthedocs.org/;
    license = licenses.mit;
  };
}