about summary refs log tree commit diff
path: root/pkgs/development/python-modules/py/default.nix
blob: cd945f7bfc611ff57de3a5f9d84f3ee651923dde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
  pname = "py";
  version = "1.5.2";
  name = "${pname}-${version}";

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

  # 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;
  };
}