nixpkgs/pkgs/development/python-modules/cock/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

20 lines
479 B
Nix

{ lib, buildPythonPackage, fetchPypi, click, sortedcontainers, pyyaml }:
buildPythonPackage rec {
pname = "cock";
version = "0.11.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-Hi8aFxATsYcEO6qNzZnF73V8WLTQjb6Dw2xF4VgT2o4=";
};
propagatedBuildInputs = [ click sortedcontainers pyyaml ];
meta = with lib; {
homepage = "https://github.com/pohmelie/cock";
description = "Configuration file with click";
license = licenses.mit;
};
}