about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/py/default.nix
blob: c1cf60ca4d779424cf6b16e1e076ea555c16cd8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, fetchPypi, setuptools-scm }:

buildPythonPackage rec {
  pname = "py";
  version = "1.11.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719";
  };

  # Circular dependency on pytest
  doCheck = false;

  nativeBuildInputs = [ setuptools-scm ];

  pythonImportsCheck = [
    "py"
  ];

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