92b3d6365d
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
21 lines
522 B
Nix
21 lines
522 B
Nix
{ 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 ];
|
|
};
|
|
}
|