at 23.05-pre 21 lines 522 B view raw
1{ lib, buildPythonPackage, fetchPypi, six, random2 }: 2 3buildPythonPackage rec { 4 pname = "pysol-cards"; 5 version = "0.14.2"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "pysol_cards"; 10 sha256 = "sha256-wI3oV1d7w+7JcMOt08RbNlMWzChErNYIO7Vuox1A6vA="; 11 }; 12 13 propagatedBuildInputs = [ six random2 ]; 14 15 meta = with lib; { 16 description = "Generates Solitaire deals"; 17 homepage = "https://github.com/shlomif/pysol_cards"; 18 license = licenses.mit; 19 maintainers = with maintainers; [ mwolfe ]; 20 }; 21}