summary refs log tree commit diff
path: root/pkgs/development/python-modules/packaging/2.nix
blob: 5d841eb4fb1373ef4e1fb4230f8309c19234811f (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, pyparsing
, six
, pytestCheckHook
, pretend
, flit-core
}:

# We keep 20.4 because it uses setuptools instead of flit-core
# which requires Python 3 to build a universal wheel.

buildPythonPackage rec {
  pname = "packaging";
  version = "20.4";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4357f74f47b9c12db93624a82154e9b120fa8293699949152b22065d556079f8";
  };

  propagatedBuildInputs = [ pyparsing six ];

  checkInputs = [
    pytestCheckHook
    pretend
  ];

  # Prevent circular dependency
  doCheck = false;

  meta = with lib; {
    description = "Core utilities for Python packages";
    homepage = "https://github.com/pypa/packaging";
    license = [ licenses.bsd2 licenses.asl20 ];
    maintainers = with maintainers; [ bennofs ];
  };
}