nixpkgs/pkgs/development/python-modules/pysol-cards/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

22 lines
520 B
Nix

{ lib, buildPythonPackage, fetchPypi, six, random2 }:
buildPythonPackage rec {
pname = "pysol-cards";
version = "0.14.3";
src = fetchPypi {
inherit version;
pname = "pysol_cards";
hash = "sha256-sPv9OGFb/G/XVdq1hQWprhYtDaGGbCXKkUGTi1gj8GE=";
};
propagatedBuildInputs = [ six random2 ];
meta = with lib; {
description = "Generates Solitaire deals";
homepage = "https://github.com/shlomif/pysol_cards";
license = licenses.mit;
maintainers = with maintainers; [ mwolfe ];
};
}