From 28d2a28d954c5811ba5ce023c91bb2b4dd856730 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sat, 27 Oct 2018 09:44:41 -0400 Subject: [PATCH] pythonPackages.clint: refactor move to python-modules --- .../python-modules/clint/default.nix | 39 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 23 +---------- 2 files changed, 40 insertions(+), 22 deletions(-) create mode 100644 pkgs/development/python-modules/clint/default.nix diff --git a/pkgs/development/python-modules/clint/default.nix b/pkgs/development/python-modules/clint/default.nix new file mode 100644 index 00000000000..602ab00b084 --- /dev/null +++ b/pkgs/development/python-modules/clint/default.nix @@ -0,0 +1,39 @@ +{ stdenv +, buildPythonPackage +, fetchPypi +, python +, mock +, blessings +, nose +, nose_progressive +, pillow +, args +, pkgs +}: + +buildPythonPackage rec { + pname = "clint"; + version = "0.5.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5"; + }; + + LC_ALL="en_US.UTF-8"; + + checkPhase = '' + ${python.interpreter} test_clint.py + ''; + + buildInputs = [ mock nose nose_progressive pkgs.glibcLocales ]; + propagatedBuildInputs = [ pillow blessings args ]; + + meta = with stdenv.lib; { + homepage = https://github.com/kennethreitz/clint; + description = "Python Command Line Interface Tools"; + license = licenses.isc; + maintainers = with maintainers; [ domenkozar ]; + }; + +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8efc89298af..20e41b37102 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3809,28 +3809,7 @@ in { pilkit = callPackage ../development/python-modules/pilkit { }; - clint = buildPythonPackage rec { - name = "clint-0.5.1"; - - src = pkgs.fetchurl { - url = "mirror://pypi/c/clint/${name}.tar.gz"; - sha256 = "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5"; - }; - - - LC_ALL="en_US.UTF-8"; - - checkPhase = '' - ${python.interpreter} test_clint.py - ''; - - buildInputs = with self; [ mock blessings nose nose_progressive pkgs.glibcLocales ]; - propagatedBuildInputs = with self; [ pillow blessings args ]; - - meta = { - maintainers = with maintainers; [ domenkozar ]; - }; - }; + clint = callPackage ../development/python-modules/clint { }; argh = buildPythonPackage rec { name = "argh-0.26.1";