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