pipenv: 2018.5.18 -> 2018.7.1

Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
Domen Kožar
2018-07-19 17:36:05 +01:00
committed by Frederik Rietdijk
parent fb7b8948f4
commit 40887a6dc6
6 changed files with 87 additions and 8 deletions

View File

@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
, attrs
, pytest
, hypothesis
, pretend
, arpeggio
}:
buildPythonPackage rec {
pname = "parver";
version = "0.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "05dsjmk3ckd175ln8smxr1f6l6qsrjyd8s5vfqc5x7fii3vgyjmc";
};
propagatedBuildInputs = [ six attrs arpeggio ];
checkInputs = [ pytest hypothesis pretend ];
meta = {
description = "parver allows parsing and manipulation of PEP 440 version numbers.";
license = lib.licenses.mit;
};
}