hcs_utils: 1.5 -> 2.0
This commit is contained in:
parent
2edb7e9b2d
commit
755e6eb22e
24
pkgs/development/python-modules/hcs_utils/default.nix
Normal file
24
pkgs/development/python-modules/hcs_utils/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, six, glibcLocales, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hcs_utils";
|
||||
version = "2.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "04xq69hrys8lf9kp8pva0c4aphjjfw412km7c32ydkwq0i59rhp2";
|
||||
};
|
||||
|
||||
LC_ALL="en_US.UTF-8";
|
||||
|
||||
buildInputs = [ six glibcLocales pytest ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Library collecting some useful snippets";
|
||||
homepage = https://pypi.python.org/pypi/hcs_utils/1.3;
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -10268,27 +10268,7 @@ in {
|
||||
|
||||
hmmlearn = callPackage ../development/python-modules/hmmlearn { };
|
||||
|
||||
hcs_utils = buildPythonPackage rec {
|
||||
name = "hcs_utils-1.5";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/h/hcs_utils/${name}.tar.gz";
|
||||
sha256 = "1d2za9crkgzildx610w3zif2i8phcqhh6n8nzg3yvy2mg0s18mkl";
|
||||
};
|
||||
|
||||
LC_ALL="en_US.UTF-8";
|
||||
|
||||
buildInputs = with self; [ six pkgs.glibcLocales ];
|
||||
|
||||
meta = {
|
||||
description = "Library collecting some useful snippets";
|
||||
homepage = https://pypi.python.org/pypi/hcs_utils/1.3;
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
};
|
||||
|
||||
hcs_utils = callPackage ../development/python-modules/hcs_utils { };
|
||||
|
||||
hetzner = buildPythonPackage rec {
|
||||
name = "hetzner-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user