pythonPackages.random2: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-16 12:54:15 -04:00 committed by Frederik Rietdijk
parent 1543d06a67
commit c38f4d6407
2 changed files with 25 additions and 10 deletions

View File

@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPyPy
}:
buildPythonPackage rec {
pname = "random2";
version = "1.0.1";
doCheck = !isPyPy;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007";
};
meta = with stdenv.lib; {
homepage = http://pypi.python.org/pypi/random2;
description = "Python 3 compatible Python 2 `random` Module";
license = licenses.psfl;
};
}

View File

@ -2169,16 +2169,7 @@ in {
pyrtlsdr = callPackage ../development/python-modules/pyrtlsdr { };
random2 = self.buildPythonPackage rec {
name = "random2-1.0.1";
doCheck = !isPyPy;
src = pkgs.fetchurl {
url = "mirror://pypi/r/random2/${name}.zip";
sha256 = "34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007";
};
};
random2 = callPackage ../development/python-modules/random2 { };
scandir = callPackage ../development/python-modules/scandir { };