forked from mirrors/nixpkgs
Merge pull request #105967 from bhipple/add/milc
python3Packages.milc: init at 1.0.10
This commit is contained in:
commit
e45a472c22
38
pkgs/development/python-modules/milc/default.nix
Normal file
38
pkgs/development/python-modules/milc/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, appdirs
|
||||
, argcomplete
|
||||
, colorama
|
||||
, gnugrep
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "milc";
|
||||
version = "1.0.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "clueboard";
|
||||
repo = "milc";
|
||||
rev = version;
|
||||
sha256 = "04mk057b6jh0k4maqkg80kpilxak9r7vlr9xqwzczh2gs3g2x573";
|
||||
};
|
||||
|
||||
checkInputs = [ gnugrep ];
|
||||
propagatedBuildInputs = [ appdirs argcomplete colorama ];
|
||||
|
||||
# Upstream has a nose2 test suite that runs this hello script in a handful of
|
||||
# ways, but it's not in setup.py and makes assumptions about relative paths in
|
||||
# the src repo, so just sanity-check basic functionality.
|
||||
checkPhase = ''
|
||||
patchShebangs ./hello
|
||||
./hello | grep "Hello, World"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An Opinionated Batteries-Included Python 3 CLI Framework";
|
||||
homepage = "https://milc.clueboard.co";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ bhipple ];
|
||||
};
|
||||
}
|
|
@ -3781,6 +3781,8 @@ in {
|
|||
|
||||
mido = callPackage ../development/python-modules/mido { };
|
||||
|
||||
milc = callPackage ../development/python-modules/milc { };
|
||||
|
||||
milksnake = callPackage ../development/python-modules/milksnake { };
|
||||
|
||||
minidb = callPackage ../development/python-modules/minidb { };
|
||||
|
|
Loading…
Reference in a new issue