nixpkgs/pkgs/development/python-modules/parver/default.nix
R. RyanTM 25a3b0b731 python37Packages.parver: 0.2.0 -> 0.2.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-parver/versions
2019-01-03 16:30:50 -05:00

29 lines
525 B
Nix

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