Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / proboscis / default.nix
bloba2a1d04ebe0edc2b73e1f49715334d7b1231f50a
1 { lib, buildPythonPackage, fetchPypi, nose }:
3 buildPythonPackage rec {
4   pname = "proboscis";
5   version = "1.2.6.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238";
10   };
12   propagatedBuildInputs = [ nose ];
13   doCheck = false;
15   meta = with lib; {
16     description = "A Python test framework that extends Python's built-in unittest module and Nose with features from TestNG";
17     homepage = "https://pypi.python.org/pypi/proboscis";
18     license = licenses.asl20;
19   };