python3Packages.sharkiq: init at 0.0.1
Make sharkiqpy an alias of sharkiq.
This commit is contained in:
parent
0d65beb84b
commit
a4a6a8bab8
3 changed files with 10 additions and 8 deletions
|
@ -6,12 +6,12 @@
|
|||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sharkiqpy";
|
||||
version = "0.1.9";
|
||||
pname = "sharkiq";
|
||||
version = "0.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0nk1nbplyk28qadxc7rydjvdgbz3za0xjg6c95l95mhiz453q5sw";
|
||||
sha256 = "e5efb0ad13a66cf6a097da5c128347ef7bd0b2abe53a8ca65cbc847ec1190c8b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -21,12 +21,13 @@ buildPythonPackage rec {
|
|||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "sharkiqpy" ];
|
||||
|
||||
pythonImportsCheck = [ "sharkiq" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python API for Shark IQ robot";
|
||||
homepage = "https://github.com/ajmarks/sharkiq";
|
||||
license = with licenses; [ mit ];
|
||||
description = "Python API for Shark IQ robots";
|
||||
homepage = "https://github.com/JeffResc/sharkiq";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -133,6 +133,7 @@ mapAliases ({
|
|||
scikitlearn = scikit-learn; # added 2021-07-21
|
||||
selectors34 = throw "selectors34 has been removed: functionality provided by Python itself; archived by upstream."; # added 2021-06-10
|
||||
setuptools_scm = setuptools-scm; # added 2021-06-03
|
||||
sharkiqpy = sharkiq; # added 2022-05-21
|
||||
smart_open = smart-open; # added 2021-03-14
|
||||
smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14
|
||||
SPARQLWrapper = sparqlwrapper;
|
||||
|
|
|
@ -9471,7 +9471,7 @@ in {
|
|||
|
||||
sharedmem = callPackage ../development/python-modules/sharedmem { };
|
||||
|
||||
sharkiqpy = callPackage ../development/python-modules/sharkiqpy { };
|
||||
sharkiq = callPackage ../development/python-modules/sharkiq { };
|
||||
|
||||
sh = callPackage ../development/python-modules/sh { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue