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

buildPythonPackage rec {
  pname = "proboscis";
  version = "1.2.6.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238";
  };

  propagatedBuildInputs = [ nose ];
  doCheck = false;

  meta = with stdenv.lib; {
    description = "A Python test framework that extends Python's built-in unittest module and Nose with features from TestNG";
    homepage = "https://pypi.python.org/pypi/proboscis";
    license = licenses.asl20;
  };
}