fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
32 lines
599 B
Nix
32 lines
599 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
six,
|
|
random2,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysol-cards";
|
|
version = "0.16.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "pysol_cards";
|
|
hash = "sha256-C4fKez+ZFVzM08/XOfc593RNb4GYIixtSToDSj1FcMM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
random2
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Generates Solitaire deals";
|
|
mainProgram = "pysol_cards";
|
|
homepage = "https://github.com/shlomif/pysol_cards";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mwolfe ];
|
|
};
|
|
}
|