755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
33 lines
669 B
Nix
33 lines
669 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
python,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymdstat";
|
|
version = "0.4.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nicolargo";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "01hj8vyd9f7610sqvzphpr033rvnazbwvl11gi18ia3yqlnlncp0";
|
|
};
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} $src/unitest.py
|
|
'';
|
|
|
|
pythonImportsCheck = [ "pymdstat" ];
|
|
|
|
meta = with lib; {
|
|
description = "Pythonic library to parse Linux /proc/mdstat file";
|
|
homepage = "https://github.com/nicolargo/pymdstat";
|
|
maintainers = with maintainers; [ rhoriguchi ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|