1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5, attrs
6, pytest
7, hypothesis
8, pretend
9, arpeggio
10}:
11
12buildPythonPackage rec {
13 pname = "parver";
14 version = "0.3.1";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "c902e0653bcce927cc156a7fd9b3a51924cbce3bf3d0bfd49fc282bfd0c5dfd3";
19 };
20
21 propagatedBuildInputs = [ six attrs arpeggio ];
22 checkInputs = [ pytest hypothesis pretend ];
23
24 meta = {
25 description = "parver allows parsing and manipulation of PEP 440 version numbers.";
26 license = lib.licenses.mit;
27 };
28}