linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / random2 / default.nix
blob6845a5707da7f5ee1cc691f3d0ae7a18390b4ac3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPyPy
5 }:
7 buildPythonPackage rec {
8   pname = "random2";
9   version = "1.0.1";
10   doCheck = !isPyPy;
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007";
16   };
18   meta = with lib; {
19     homepage = "http://pypi.python.org/pypi/random2";
20     description = "Python 3 compatible Python 2 `random` Module";
21     license = licenses.psfl;
22   };