nixpkgs/pkgs/development/python-modules/voluptuous/default.nix
R. RyanTM 1e9e1f8dfc python37Packages.voluptuous: 0.11.5 -> 0.11.7
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-voluptuous/versions
2019-08-20 11:10:28 -07:00

20 lines
459 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "voluptuous";
version = "0.11.7";
src = fetchPypi {
inherit pname version;
sha256 = "0mplkcpb5d8wjf8vk195fys4y6a3wbibiyf708imw33lphfk9g1a";
};
checkInputs = [ nose ];
meta = with stdenv.lib; {
description = "Voluptuous is a Python data validation library";
homepage = http://alecthomas.github.io/voluptuous/;
license = licenses.bsd3;
};
}