10 lines
178 B
Nix
10 lines
178 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.python36.pkgs.buildPythonPackage {
|
||
|
name = "lektor-shell";
|
||
|
version = "0.3";
|
||
|
src = ./.;
|
||
|
# propagatedBuildInputs = [ pytest numpy pkgs.libsndfile ];
|
||
|
}
|
||
|
|