mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
proboscis: move to own file and fix homepage
This commit is contained in:
parent
14464b1dc5
commit
b29348257a
2 changed files with 22 additions and 17 deletions
21
pkgs/development/python-modules/proboscis/default.nix
Normal file
21
pkgs/development/python-modules/proboscis/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "proboscis";
|
||||
version = "1.2.6.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -1623,23 +1623,7 @@ in {
|
|||
|
||||
rarfile = callPackage ../development/python-modules/rarfile { inherit (pkgs) libarchive; };
|
||||
|
||||
proboscis = buildPythonPackage rec {
|
||||
name = "proboscis-1.2.6.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/proboscis/proboscis-1.2.6.0.tar.gz";
|
||||
sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ nose ];
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A Python test framework that extends Python's built-in unittest module and Nose with features from TestNG";
|
||||
homepage = https://github.com/rackspace/python-proboscis;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
};
|
||||
proboscis = callPackage ../development/python-modules/proboscis {};
|
||||
|
||||
pyechonest = self.buildPythonPackage rec {
|
||||
name = "pyechonest-8.0.2";
|
||||
|
|
Loading…
Reference in a new issue