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

buildPythonPackage rec {
  pname = "EasyProcess";
  version = "0.2.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0gdl6y37g8rns2i26d2zlx7x4kbpql9h5qd8k23ka69q6frcpb8k";
  };

  # No tests
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Easy to use python subprocess interface";
    homepage = https://github.com/ponty/EasyProcess;
    license = licenses.bsdOriginal;
    maintainers = with maintainers; [ layus ];
  };
}