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/easyprocess/default.nix

21 lines
492 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "EasyProcess";
version = "1.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-iFiYMCpXqrlIlz6LXTKkIpOSufstmGqx1P/VkOW6kOw=";
};
# No tests
doCheck = false;
meta = with lib; {
description = "Easy to use python subprocess interface";
homepage = "https://github.com/ponty/EasyProcess";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ layus ];
};
}