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.2.1";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "0jzyylcmjxb0agc4fpdnzdnv2ajvp99rs9pz7qcklnhlmy8scdqv";
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}