mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
pythonPackages.readlike: init at 0.1.3
This commit is contained in:
parent
ef6fa37bae
commit
6f9d7000ce
28
pkgs/development/python-modules/readlike/default.nix
Normal file
28
pkgs/development/python-modules/readlike/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "readlike";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jangler";
|
||||
repo = "readlike";
|
||||
rev = version;
|
||||
sha256 = "1mw8j8ads8hqdbz42siwpffi4wi5s33z9g14a5c2i7vxp8m68qc1";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover -s tests
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "GNU Readline-like line editing module";
|
||||
homepage = "https://github.com/jangler/readlike";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -7313,6 +7313,8 @@ in {
|
||||
|
||||
readchar = callPackage ../development/python-modules/readchar { };
|
||||
|
||||
readlike = callPackage ../development/python-modules/readlike { };
|
||||
|
||||
readme = callPackage ../development/python-modules/readme { };
|
||||
|
||||
readme_renderer = callPackage ../development/python-modules/readme_renderer { };
|
||||
|
Loading…
Reference in New Issue
Block a user