python3Packages.pysol-cards: init at 0.14.2

Required by pysolfc 2.16.0.
This commit is contained in:
Morgan Wolfe 2022-09-27 22:59:26 -07:00
parent a385c00ee2
commit 05242b2ccc
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi, six, random2 }:
buildPythonPackage rec {
pname = "pysol-cards";
version = "0.14.2";
src = fetchPypi {
inherit version;
pname = "pysol_cards";
sha256 = "sha256-wI3oV1d7w+7JcMOt08RbNlMWzChErNYIO7Vuox1A6vA=";
};
propagatedBuildInputs = [ six random2 ];
meta = with lib; {
description = "Generates Solitaire deals";
homepage = "https://github.com/shlomif/pysol_cards";
license = licenses.mit;
maintainers = with maintainers; [ mwolfe ];
};
}

View File

@ -8544,6 +8544,8 @@ in {
pysocks = callPackage ../development/python-modules/pysocks { };
pysol-cards = callPackage ../development/python-modules/pysol-cards { };
pysolr = callPackage ../development/python-modules/pysolr { };
pysoma = callPackage ../development/python-modules/pysoma { };