mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.apptools: init at 4.4.0
This commit is contained in:
parent
4da1a74f25
commit
7800b2f71a
2 changed files with 33 additions and 0 deletions
31
pkgs/development/python-modules/apptools/default.nix
Normal file
31
pkgs/development/python-modules/apptools/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage
|
||||
, traits, traitsui, configobj
|
||||
, nose, tables, pandas
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "apptools";
|
||||
version = "4.4.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1dw6vvq7lqkj7mgn3s7r5hs937kl4mj5g7jf2qgvhdld9lsc5xbk";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ traits traitsui configobj ];
|
||||
|
||||
checkInputs = [
|
||||
nose
|
||||
tables
|
||||
pandas
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Set of packages that Enthought has found useful in creating a number of applications.";
|
||||
homepage = https://github.com/enthought/apptools;
|
||||
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
|
||||
license = licenses.bsdOriginal;
|
||||
};
|
||||
}
|
|
@ -1614,6 +1614,8 @@ in {
|
|||
|
||||
approvaltests = callPackage ../development/python-modules/approvaltests { };
|
||||
|
||||
apptools = callPackage ../development/python-modules/apptools {};
|
||||
|
||||
apsw = callPackage ../development/python-modules/apsw {};
|
||||
|
||||
astor = callPackage ../development/python-modules/astor {};
|
||||
|
|
Loading…
Reference in a new issue