depot/third_party/nixpkgs/pkgs/development/python-modules/easyprocess/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

21 lines
492 B
Nix

{ 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 ];
};
}