Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-unshare / default.nix
blob86958dfc003e08badfc678a2865d5c005944cf5c
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage {
7   pname = "python-unshare";
8   # pypi version doesn't support Python 3 and the package didn't update for a long time:
9   # https://github.com/TheTincho/python-unshare/pull/8
10   version = "unstable-2018-05-20";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "TheTincho";
15     repo = "python-unshare";
16     rev = "4e98c177bdeb24c5dcfcd66c457845a776bbb75c";
17     sha256 = "1h9biinhy5m7r2cj4abhvsg2hb6xjny3n2dxnj1336zpa082ys3h";
18   };
20   meta = with lib; {
21     description = "Python bindings for the Linux unshare() syscall";
22     homepage    = "https://github.com/thetincho/python-unshare";
23     license     = licenses.gpl2;
24     platforms   = platforms.linux;
25     maintainers = with maintainers; [ abbradar ];
26   };