pythonPackages.runsnakerun: refactor move to python-modules
This commit is contained in:
parent
00209911b0
commit
dc75e8916c
25
pkgs/development/python-modules/runsnakerun/default.nix
Normal file
25
pkgs/development/python-modules/runsnakerun/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, squaremap
|
||||||
|
, wxPython
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "runsnakerun";
|
||||||
|
version = "2.0.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "61d03a13f1dcb3c1829f5a146da1fe0cc0e27947558a51e848b6d469902815ef";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ squaremap wxPython ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "GUI Viewer for Python profiling runs";
|
||||||
|
homepage = http://www.vrplumber.com/programming/runsnakerun/;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -3666,22 +3666,7 @@ in {
|
|||||||
|
|
||||||
ruamel_yaml = callPackage ../development/python-modules/ruamel_yaml { };
|
ruamel_yaml = callPackage ../development/python-modules/ruamel_yaml { };
|
||||||
|
|
||||||
runsnakerun = buildPythonPackage rec {
|
runsnakerun = callPackage ../development/python-modules/runsnakerun { };
|
||||||
name = "runsnakerun-2.0.4";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/R/RunSnakeRun/RunSnakeRun-2.0.4.tar.gz";
|
|
||||||
sha256 = "61d03a13f1dcb3c1829f5a146da1fe0cc0e27947558a51e848b6d469902815ef";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ squaremap wxPython ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "GUI Viewer for Python profiling runs";
|
|
||||||
homepage = http://www.vrplumber.com/programming/runsnakerun/;
|
|
||||||
license = licenses.bsd3;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
s3transfer = callPackage ../development/python-modules/s3transfer { };
|
s3transfer = callPackage ../development/python-modules/s3transfer { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user