mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 14:27:45 +00:00
Merge pull request #315985 from Sigmanificient/outspin
This commit is contained in:
commit
ff80247307
32
pkgs/development/python-modules/outspin/default.nix
Normal file
32
pkgs/development/python-modules/outspin/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
poetry-core,
|
||||
pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "outspin";
|
||||
version = "0.3.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "trag1c";
|
||||
repo = "outspin";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-j+J3n/p+DcfnhGfC4/NDBDl5bF39L5kIPeGJW0Zm7ls=";
|
||||
};
|
||||
|
||||
build-system = [ poetry-core ];
|
||||
pythonImportsCheck = [ "outspin" ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/trag1c/outspin/blob/${src.rev}/CHANGELOG.md";
|
||||
description = "Conveniently read single char inputs in the console";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ sigmanificient ];
|
||||
};
|
||||
}
|
@ -9394,6 +9394,8 @@ self: super: with self; {
|
||||
|
||||
outcome = callPackage ../development/python-modules/outcome { };
|
||||
|
||||
outspin = callPackage ../development/python-modules/outspin { };
|
||||
|
||||
ovh = callPackage ../development/python-modules/ovh { };
|
||||
|
||||
ovmfvartool = callPackage ../development/python-modules/ovmfvartool { };
|
||||
|
Loading…
Reference in New Issue
Block a user