about summary refs log tree commit diff
path: root/pkgs/development/python-modules/voluptuous/default.nix
blob: 00c13cba06697151e749a7dc8c1091acfb40e76a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi, nose }:

buildPythonPackage rec {
  pname = "voluptuous";
  version = "0.10.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "15i3gaap8ilhpbah1ffc6q415wkvliqxilc6s69a4rinvkw6cx3s";
  };

  checkInputs = [ nose ];

  meta = with stdenv.lib; {
    description = "Voluptuous is a Python data validation library";
    homepage = http://alecthomas.github.io/voluptuous/;
    license = licenses.bsd3;
  };
}