summary refs log tree commit diff
path: root/pkgs/development/python-modules/easyprocess/default.nix
blob: 502c0f64e6b4983d9e2912edb4c2788067e28ffa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "easyprocess";
  version = "1.1";

  src = fetchPypi {
    pname = "EasyProcess";
    inherit 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 ];
  };
}