pythonPackages.scales: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-27 09:58:34 -04:00
parent f6944a991a
commit af9b13436b
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 30 additions and 21 deletions

View File

@ -0,0 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, six
}:
buildPythonPackage rec {
pname = "scales";
version = "1.0.9";
src = fetchPypi {
inherit pname version;
sha256 = "8b6930f7d4bf115192290b44c757af5e254e3fcfcb75ff9a51f5c96a404e2753";
};
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];
# No tests included
doCheck = false;
meta = with stdenv.lib; {
description = "Stats for Python processes";
homepage = https://www.github.com/Cue/scales;
license = licenses.asl20;
};
}

View File

@ -3823,27 +3823,7 @@ in {
sandboxlib = callPackage ../development/python-modules/sandboxlib { };
scales = buildPythonPackage rec {
name = "scales-${version}";
version = "1.0.9";
src = pkgs.fetchurl {
url = "mirror://pypi/s/scales/${name}.tar.gz";
sha256 = "8b6930f7d4bf115192290b44c757af5e254e3fcfcb75ff9a51f5c96a404e2753";
};
buildInputs = with self; optionals doCheck [ nose ];
# No tests included
doCheck = false;
propagatedBuildInputs = with self; [ six ];
meta = {
description = "Stats for Python processes";
homepage = https://www.github.com/Cue/scales;
license = licenses.asl20;
};
};
scales = callPackage ../development/python-modules/scales { };
secp256k1 = callPackage ../development/python-modules/secp256k1 {
inherit (pkgs) secp256k1 pkgconfig;