My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/bunch/default.nix

17 lines
318 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "bunch";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "1akalx2pd1fjlvrq69plvcx783ppslvikqdm93z2sdybq07pmish";
};
doCheck = false;
meta = with lib; {
maintainers = with maintainers; [ ];
};
}